home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1996 July / Macworld (1996-07).dmg / System 7.5 Update 2.0 / FileMaker Pro 3.0 CD Extras / FileMaker And Apple Events / Syntax Examples / Objects / Menu Item Properties < prev    next >
Encoding:
Text File  |  1996-01-25  |  437 b   |  12 lines  |  [TEXT/ToyS]

  1. tell application "FileMaker Pro"
  2.     create menu item
  3.     class of first menu item of menu "File"
  4.     default type of second menu item of menu "File"
  5.     best type of menu item 5 of menu "File"
  6.     name of menu item 1 of menu "Font" of menu "Format"
  7.     item number of menu item "New…" of menu "File"
  8.     checked of menu item "Browse" of menu "Mode"
  9.     enabled of menu item "Clear" of menu "Edit"
  10.     notify address of first menu item of menu "External"
  11. end tell
  12.